home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / ntkb.zip / NTKB.EXE / Q103 / 0 / 40.TXT < prev    next >
Text File  |  1993-11-16  |  3KB  |  78 lines

  1. DOCUMENT:Q103040  04-NOV-1993  [W_NT]
  2. TITLE   :PRB: Renaming Files While Copying May Cause Corruption
  3. PRODUCT :Windows NT
  4. PROD/VER:3.10
  5. OPER/SYS:WINDOWS
  6. KEYWORDS:
  7.  
  8. ----------------------------------------------------------------------
  9. The information in this article applies to:
  10.  
  11.  - Microsoft Windows NT operating system, version 3.1
  12.  - Microsoft Windows NT Advanced Server, version 3.1
  13. ----------------------------------------------------------------------
  14.  
  15. SYMPTOMS
  16. ========
  17.  
  18. With the Windows NT command prompt, if you use the Copy command to
  19. copy a file from one directory to another, you cannot rename the file
  20. simultaneously if you are using wildcards in the command line.
  21.  
  22. For example, if you have one file called TEST.EXE in a directory
  23. called ATEST, and you want to rename the file to BINARY.EXE while
  24. copying it, the file will be corrupted if you use the following
  25. command line:
  26.  
  27.    copy c:\atest\*.exe c:\binary.exe
  28.  
  29. The file will be partially copied, but will truncate at the first
  30. instance of CTRL-Z (EOF) in the file, causing a corrupted file.
  31.  
  32. RESOLUTION
  33. ==========
  34.  
  35. To workaround this problem, use a /b switch in front of the source
  36. file. This will correctly complete the copy and rename operation. For
  37. example:
  38.  
  39.    copy /b c:\atest\*.exe c:\binary.exe
  40.  
  41. Do not place the /b after the destination file. If you use a /b after
  42. the destination file as in the following example, the destination file
  43. will be corrupted:
  44.  
  45.    copy c:\atest\*.exe c:\binary.exe /b
  46.  
  47. Also, using the following command is the best way to copy and rename a
  48. file:
  49.  
  50.    copy c:\atest\test.exe c:\binary.exe
  51.  
  52. STATUS
  53. ======
  54.  
  55. Microsoft has confirmed this to be a problem in Windows NT version 3.1
  56. and Windows NT Advanced Server version 3.1. We are researching this
  57. problem and will post new information here in the Microsoft Knowledge
  58. Base as it becomes available.
  59.  
  60. Additional reference words: 3.10 cmd
  61. KBCategory:
  62. KBSubcategory: ntap filsys
  63.  
  64. =============================================================================
  65.  
  66. THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS
  67. PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.  MICROSOFT DISCLAIMS
  68. ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES
  69. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  IN NO
  70. EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR
  71. ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL,
  72. CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF
  73. MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE
  74. POSSIBILITY OF SUCH DAMAGES.  SOME STATES DO NOT ALLOW THE EXCLUSION
  75. OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES
  76. SO THE FOREGOING LIMITATION MAY NOT APPLY.
  77.  
  78. Copyright Microsoft Corporation 1993.